home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / scsiDiskBoot / boot.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-06-16  |  492 b   |  32 lines

  1. /*
  2.  * boot.h --
  3.  *
  4.  *    Boot program definitions.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  *
  9.  *
  10.  * $Header: boot.h,v 1.2 87/05/08 17:43:52 brent Exp $ SPRITE (Berkeley)
  11.  */
  12.  
  13. #ifndef _BOOT
  14. #define _BOOT
  15.  
  16. /*
  17.  * This affects what devices get configured in.
  18.  */
  19. #define SCSI_DISK_BOOT
  20. /*
  21.  * Do SCSI3. 
  22. */
  23. #ifdef notdef
  24. #define SCSI3_BOOT
  25. #define SCSI3_ONBOARD 
  26. #endif
  27. #define SCSI0_BOOT 
  28. int (*boot_Poll)();
  29. int (*boot_SendSCSICommand)();
  30.  
  31. #endif _BOOT
  32.